home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960209-19960425 / 000340_news@columbia.edu _Fri Apr 5 10:46:12 1996.msg < prev    next >
Internet Message Format  |  1996-05-13  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA07232 for <kermit.misc@watsun>; Fri, 5 Apr 1996 10:46:07 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA11271 for kermit.misc@watsun; Fri, 5 Apr 1996 10:46:05 -0500 (EST)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!munnari.OZ.AU!news.ecn.uoknor.edu!paladin.american.edu!gatech!newsfeed.internetmci.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit and PPP
  8. Message-ID: <1996Apr5.074214.77698@cc.usu.edu>
  9. Date: 5 Apr 96 07:42:14 MDT
  10. References: <4jvb8g$ico@guitar.sound.net>
  11. Organization: Utah State University
  12. Lines: 30
  13.  
  14. In article <4jvb8g$ico@guitar.sound.net>, jr@echo.sound.net (Rock N Roll) writes:
  15. > I'm trying to use Kermit for DOS 3.14 over a PPP connection.  I looked
  16. > through the docs and the only thing close enough that I could find was some
  17. > type of SLIP driver in the NETWORKS directory.  So I downloaded some other
  18. > PPP driver for DOS.  I don't remember the name of it but it used files
  19. > called PPP.EXE, DIAL.PPP, and CONFIG.PPP (which could probably be any number
  20. > of programs, I don't know).  I got the scripting through that to work and
  21. > after running it, it can get my IP address, so I'm sure it's working.  What
  22. > I want to know is how to get Kermit to use this.  I tried all the SET
  23. > TCP/IP and SET TELNET commands to configure everything.  When I try to
  24. > telnet to a host, it says something about not getting an ARP response from a
  25. > DNS server.  Does Kermit for DOS only work over SLIP?
  26. -----------
  27.     That item above is, I believe, the revised Merit PPP Packet Driver.
  28. If so it works here with MS-DOS Kermit 3.15/development. Older Merit PPP 
  29. drivers merely hung my machine before Kermit could be started.
  30.     You need to get IP numbers stated correctly, for openers. But there
  31. is a gotcha lurking in the works. It is there is a bug in MSK 3.14 wrt
  32. MAC (Ethernet etc) physical addresses. To deal with some NDIS drivers which
  33. echo back everything we send I match source MAC address with our own and
  34. reject packets which match. Alas, the test covered only the lead three bytes
  35. of six, by mistake, and that's the vendor ident field on most boards. Since
  36. PPP isn't Ethernet the Merit driver fakes Ethernet to the application, and
  37. the MAC addressed used might trip that bug (packets seem to come from our
  38. own lan adapter kind of thing).
  39.     If this the case then there are two solutions: drop back to MSK 3.13
  40. for the time being, or wait for MSK 3.15 which is in the works (but won't
  41. appear right away). This particular bug can't be patched.
  42.     Joe D.